home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / glibc108.zip / glibc108 / mach / err_boot.sub < prev    next >
Text File  |  1992-10-06  |  2KB  |  61 lines

  1. /* 
  2.  * Mach Operating System
  3.  * Copyright (c) 1992 Carnegie Mellon University
  4.  * All Rights Reserved.
  5.  * 
  6.  * Permission to use, copy, modify and distribute this software and its
  7.  * documentation is hereby granted, provided that both the copyright
  8.  * notice and this permission notice appear in all copies of the
  9.  * software, derivative works or modified versions, and any portions
  10.  * thereof, and that both notices appear in supporting documentation.
  11.  * 
  12.  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
  13.  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
  14.  * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
  15.  * 
  16.  * Carnegie Mellon requests users of this software to return to
  17.  * 
  18.  *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
  19.  *  School of Computer Science
  20.  *  Carnegie Mellon University
  21.  *  Pittsburgh PA 15213-3890
  22.  * 
  23.  * any improvements or extensions that they make and grant Carnegie Mellon 
  24.  * the rights to redistribute these changes.
  25.  */
  26. /*
  27.  * HISTORY
  28.  * $Log:    err_bootstrap.sub,v $
  29.  * Revision 2.2  92/04/01  19:37:59  rpd
  30.  *     Created.
  31.  *     [92/03/09            rpd]
  32.  * 
  33.  */
  34. /*
  35.  *    File:    err_bootstrap.sub
  36.  *    Author:    Richard Draves, Carnegie Mellon University
  37.  *    Date:    March 9, 1992
  38.  *
  39.  *    Error string definitions for bootstrap
  40.  */
  41.  
  42. static char * err_codes_bootstrap_fs[] = {
  43.     /* 0 */    "(bootstrap/fs) not a directory",
  44.     /* 1 */    "(bootstrap/fs) name not found",
  45.     /* 2 */    "(bootstrap/fs) name too long",
  46.     /* 3 */    "(bootstrap/fs) symbolic link loop",
  47.     /* 4 */    "(bootstrap/fs) bad file system",
  48.     /* 5 */    "(bootstrap/fs) offset not in file",
  49.     /* 6 */    "(bootstrap/fs) invalid parameter",
  50. };
  51.  
  52. /*    err_bootstrap subsystems          */
  53. static struct error_subsystem err_bootstrap_sub[] = {
  54.     /* bootstrap/0; */
  55.     {
  56.         "(bootstrap/fs)",
  57.         errlib_count(err_codes_bootstrap_fs),
  58.         err_codes_bootstrap_fs,
  59.     },
  60. };
  61.